'Declaration
Public Function Execute( _ ByVal taskSettings As ICustomObjectSettings, _ ByVal context As ITaskExecutionContext, _ ByRef returnValue As Object _ ) As Boolean
public bool Execute( ICustomObjectSettings taskSettings, ITaskExecutionContext context, out object returnValue )
Parameters
- taskSettings
- The settings for the Custom Task
- context
- The execution context for the task.
- returnValue
- An optional return value for the task. This will be stored in the job history and is available to Responses and other job steps. The value returned here does not determine the success or failure of the step; that is determined by the return value of the method.